Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
unicode-byte-truncate
Advanced tools
Unicode aware string truncation that given a max byte size will truncate the string to or just below that size
Truncate a string to a given byte size by removing bytes from the right while making sure not to slice in the middle of a multi-byte unicode character.
npm install unicode-byte-truncate --save
var trunc = require('unicode-byte-truncate')
var str = 'foo🎉bar' // 10 byte string - byte 4 to 7 is a single character
console.log(trunc(str, 4)) // `foo` == 0x666F6F (3 bytes)
console.log(trunc(str, 5)) // `foo` == 0x666F6F (3 bytes)
console.log(trunc(str, 6)) // `foo` == 0x666F6F (3 bytes)
console.log(trunc(str, 7)) // `foo🎉` == 0x666F6FF09F8E89 (7 bytes)
The unicode-byte-truncate module exposes a single trunc
function.
result = trunc(string, maxBytes)
Given a string
and a maxBytes
integer greater than or equal to zero,
the trunc
function will slice characters off the end of the string to
ensure that it doesn't contain more bytes than specified by the
maxBytes
argument.
The truncated string will be returned as the result
.
The trunc
function is multi-byte unicode aware and will never cut up
surrogate pairs. This means that the result
may contain fewer bytes
than specified by the maxBytes
argument.
MIT
FAQs
Unicode aware string truncation that given a max byte size will truncate the string to or just below that size
The npm package unicode-byte-truncate receives a total of 187,386 weekly downloads. As such, unicode-byte-truncate popularity was classified as popular.
We found that unicode-byte-truncate demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.